home *** CD-ROM | disk | FTP | other *** search
- unit FlicPanelReg;
- {
- Project : FlicPanel Component for Borland Delphi
- Company : Dragon Multimedia, London
- Copyright (C) 1997 P W Kuczora. All Rights Reserved.
- 7th Sept 1997
-
- File : FlicPanelReg.pas
- Author : Paul W Kuczora
- Overview: The component registration code
-
- EMail : kuczora@pobox.com
-
- History :
-
- 7th Sept 1997 v1.00 initial development
-
-
- }
- { --------------------------------------------------------------------------- }
- interface
- { --------------------------------------------------------------------------- }
-
- procedure Register;
-
- { --------------------------------------------------------------------------- }
- implementation
- { --------------------------------------------------------------------------- }
-
- uses Classes, FlicPanel;
-
- { --------------------------------------------------------------------------- }
- procedure Register;
-
- begin
- RegisterComponents('Samples', [TFlicPanel]);
- end;
-
- { --------------------------------------------------------------------------- }
- end.
- { --------------------------------------------------------------------------- }
-